OpenMiner  0.0.1a
Voxel game engine
Static Public Member Functions | List of all members
sol::stack::pusher< wchar_t[N]> Struct Template Reference

#include <sol.hpp>

Static Public Member Functions

static int push (lua_State *L, const wchar_t(&str)[N])
 
static int push (lua_State *L, const wchar_t(&str)[N], std::size_t sz)
 

Member Function Documentation

§ push() [1/2]

template<size_t N>
static int sol::stack::pusher< wchar_t[N]>::push ( lua_State *  L,
const wchar_t(&)  str[N] 
)
inlinestatic
11184  {
11185  return push(L, str, std::char_traits<wchar_t>::length(str));
11186  }
static int push(lua_State *L, const wchar_t(&str)[N])
Definition: sol.hpp:11184

§ push() [2/2]

template<size_t N>
static int sol::stack::pusher< wchar_t[N]>::push ( lua_State *  L,
const wchar_t(&)  str[N],
std::size_t  sz 
)
inlinestatic
11188  {
11189  return stack::push<const wchar_t*>(L, str, str + sz);
11190  }

The documentation for this struct was generated from the following file: